home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gp_mswin.h < prev    next >
C/C++ Source or Header  |  1996-09-17  |  2KB  |  53 lines

  1. /* Copyright (C) 1992, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_mswin.h */
  20. /* Definitions common to MS Windows implementation */
  21. /* (used by both C code and Windows 'resource') */
  22.   
  23. #define GSTEXT_ICON    50
  24. #define GSIMAGE_ICON    51
  25. #define SPOOL_PORT    100
  26. #define CANCEL_PCDONE    101
  27. #define CANCEL_PRINTING    102
  28.  
  29. #ifndef RC_INVOKED        /* NOTA BENE */
  30.  
  31. /* system menu constants for image window */
  32. #define M_COPY_CLIP 1
  33.  
  34. /* externals from gp_mswin.c */
  35.  
  36. /* Patch 26.10.94 :for Microsoft C/C++ 8.0 32-Bit       */
  37. /* "_export" is Microsoft 16-Bit specific.              */
  38. /* With MS-C/C++ 8.00 32 Bit "_export" causes an error. */
  39. #if defined(_WIN32) & defined(_MSC_VER)
  40. #define _export
  41. #endif
  42.  
  43. extern HWND hwndtext;
  44. extern HWND hDlgModeless;
  45. extern HINSTANCE phInstance;
  46. extern const LPSTR szAppName;
  47. extern BOOL is_win32s;
  48. extern BOOL CALLBACK _export AbortProc(HDC, int);
  49. extern BOOL CALLBACK _export CancelDlgProc(HWND, UINT, WPARAM, LPARAM);
  50. extern int is_spool(const char *queue);
  51.  
  52. #endif                /* !defined(RC_INVOKED) */
  53.